// RAP [rh] AboutDialog left out for now ///******************************************************************************* // * Copyright (c) 2000, 2009 IBM Corporation and others. // * All rights reserved. This program and the accompanying materials // * are made available under the terms of the Eclipse Public License v1.0 // * which accompanies this distribution, and is available at // * http://www.eclipse.org/legal/epl-v10.html // * // * Contributors: // * IBM Corporation - initial API and implementation // * Sebastian Davids <sdavids@gmx.de> - Fix for bug 19346 - Dialog // * font should be activated and used by other components. // *******************************************************************************/ //package org.eclipse.ui.internal.dialogs; // //import org.eclipse.osgi.util.NLS; //import org.eclipse.swt.widgets.Shell; //import org.eclipse.ui.internal.IWorkbenchHelpContextIds; //import org.eclipse.ui.internal.WorkbenchMessages; //import org.eclipse.ui.internal.about.AboutBundleGroupData; //import org.eclipse.ui.internal.about.AboutFeaturesPage; //import org.eclipse.ui.internal.about.ProductInfoDialog; // ///** // * Displays information about the product plugins. // * // * PRIVATE This class is internal to the workbench and must not be called // * outside the workbench. // */ //public class AboutFeaturesDialog extends ProductInfoDialog { // /** // * Constructor for AboutFeaturesDialog. // * // * @param parentShell the parent shell // * @param productName the product name // * @param bundleGroupInfos the bundle info // */ // public AboutFeaturesDialog(Shell parentShell, String productName, // AboutBundleGroupData[] bundleGroupInfos, AboutBundleGroupData initialSelection) { // super(parentShell); // AboutFeaturesPage page = new AboutFeaturesPage(); // page.setProductName(productName); // page.setBundleGroupInfos(bundleGroupInfos); // page.setInitialSelection(initialSelection); // String title; // if (productName != null) // title = NLS.bind(WorkbenchMessages.AboutFeaturesDialog_shellTitle, productName); // else // title = WorkbenchMessages.AboutFeaturesDialog_SimpleTitle; // initializeDialog(page, title, IWorkbenchHelpContextIds.ABOUT_FEATURES_DIALOG); // } //}